home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / MAIL16._W_ < prev    next >
Text File  |  1997-07-26  |  808b  |  38 lines

  1. #
  2. # Watcom makefile for MAIL [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # TO MAKE: wmake -f mail16._W_
  6. #
  7.  
  8. CCFLAGS = -c -oaxt -d2 -w4 -zW
  9.  
  10. OBJS = mail.obj about.obj async.obj paint.obj readini.obj str.obj unique.obj
  11.  
  12. mail.exe: $(OBJS) mail.res mail.def wil16.lib
  13.    wlink @mail16.lnk
  14.    wrc mail.res
  15.  
  16. mail.res: $(OBJS) mail.rc
  17.    wrc -r -bt=windows mail.rc
  18.  
  19. about.obj: about.c about.h
  20.    wcl $(CCFLAGS)  about.c
  21.  
  22. async.obj: async.c async.h wil.h
  23.    wcl $(CCFLAGS)  async.c
  24.  
  25. paint.obj: paint.c paint.h wil.h
  26.    wcl $(CCFLAGS)  paint.c
  27.  
  28. mail.obj: mail.c wil.h
  29.    wcl $(CCFLAGS)  mail.c
  30.  
  31. readini.obj: readini.c readini.h wil.h
  32.    wcl $(CCFLAGS)  readini.c
  33.  
  34. str.obj: str.c str.h wil.h
  35.    wcl $(CCFLAGS)  str.c
  36.  
  37. unique.obj: unique.c unique.h wil.h
  38.    wcl $(CCFLAGS)  unique.c